home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20020314-20021006 / 000269_fdc@columbia.edu_Wed Aug 7 10:07:33 EDT 2002.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  54 lines

  1. Article: 13596 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: Remote set file collision overwrite?
  6. Date: 7 Aug 2002 10:06:34 -0400
  7. Organization: Columbia University
  8. Lines: 37
  9. Message-ID: <air9ha$gcm$1@watsol.cc.columbia.edu>
  10. References: <_L_39.97579$vg.3790164@bin2.nnrp.aus1.giganews.com>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1028729195 11306 128.59.39.139 (7 Aug 2002 14:06:35 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 7 Aug 2002 14:06:35 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13596
  16.  
  17. In article <_L_39.97579$vg.3790164@bin2.nnrp.aus1.giganews.com>,
  18. Charles Peterson <LeslieCharles@comcast.net> wrote:
  19.  
  20. : After spot on help from you I have my client-server file transfer
  21. : scripting working.  I have one open issue.
  22. : The client issues REMOTE SET FILE COLLISION OVERWRITE, as this is our
  23. : intent.  The server rejects the request with the mesg....  ?Unknown remote
  24. : set parameter
  25. The message is a bit misleading.  Actually the parameter is known, but
  26. forbidden by default to protect the server from client-initiated file
  27. deletions.  If you allow incoming files to overwrite files of the same name,
  28. that is tantamount to allowing the client to delete files.  If you wish to
  29. allow the client to delete files, you have configure the server for it with
  30. the command:
  31.  
  32.   ENABLE DELETE
  33.  
  34. See pages 228-231 of Chapter 11.
  35.  
  36. : If I use REMOTE SET FILE COLLISION BACKUP, the existing file is backed up
  37. : and the replaced by the new file.  Not a show stopper, but does require
  38. : subsequent clean up of the resulting .~n~ files.
  39. : I also am rereading the manual to find out why it only works when throttled.
  40. : ie client sets speed 14 and speed-matching off. Seems like we could do
  41. : better with our boca 33.6
  42. Try this on each end:
  43.  
  44.   set port tapi                  ; Picks up modem definition from Windows.
  45.   set flow rts/cts               ; Override any misconfigurations
  46.   set modem speed-matching off   ; in the Windows modem database.
  47.   set speed 57600                ; Use a reasonable speed.
  48.  
  49. - Frank
  50.